home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr25 / quiz224.zip / QUIZ2.BAT < prev    next >
DOS Batch File  |  1995-01-13  |  819b  |  20 lines

  1. echo off
  2. cls
  3. echo This is  an  example  of  using  a batch file  (.BAT) to start
  4. echo Create A Quiz  (QUIZ.EXE)  and  instruct  the  program to EXIT
  5. echo AUTOMATICALLY  after  five (5) questions have been  attempted.
  6. echo You  will  NOT be able to  exit the program  UNTIL 5 questions
  7. echo have been attempted.  Any  attempt to exit  the  program early
  8. echo will fail.
  9. echo.
  10. echo The command line instruction is: QUIZ QTY=5 [ENTER]
  11. echo.
  12. echo Teachers: This batch  file  method is  one  way  you  can make
  13. echo sure that your students attempt a specific number of questions
  14. echo before  they  can  exit the  program.  You  can mix the   QTY=
  15. echo parameter with other Create A Quiz parameter codes.  See other
  16. echo .BAT  files on this disk or .DOC file for additional options.
  17. echo.
  18. pause
  19. QUIZ QTY=5
  20.